home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / l11u01.zip / CLPRINTR.PAT < prev    next >
Text File  |  1992-11-16  |  1KB  |  33 lines

  1. TARGET=C:\NWLITE\CLIENT.EXE
  2. LIST
  3.     print "CLPRINTR.PAT - NetWare Lite Client printer corruption fix.\n"
  4. VERIFY
  5.     va = search ( E8 33 EF 90 90 75 4E C7 06 C2
  6.                   00 01 00 26 8B 75 1D checksum 6C0 )
  7.     vc = search ( 26 8A 45 1F A2 A0 0B 26 83 7D
  8.                   1B FD C3 checksum 562 )
  9.     if ((va=1316) AND (vc=24C) ) then
  10.         print "  $TARGET already contains patch CLPRINTR.PAT.\n"
  11.         stop
  12.     else
  13.         print "  $TARGET does not contain patch CLPRINTR.PAT.\n"
  14.     endif
  15. APPLY
  16.     print "  Applying patch CLPRINTR.PAT to $TARGET...\n"
  17.     vb = search ( 26 83 7D 1B FD 75 4E C7 06 C2
  18.                   00 01 00 26 8B 75 1D checksum 5D4 )
  19.     if (vb=1316) then
  20.         patch 1316 ( E8 33 EF 90 90 checksum 32A )
  21.         patch  24C ( 26 8A 45 1F A2 A0 0B 26 83 7D
  22.                      1B FD C3 checksum 562 )
  23.         write
  24.         print "  $TARGET now contains patch CLPRINTR.PAT.\n"
  25.         stop
  26.     else
  27.         print "  Could not find pattern indicating that $TARGET\n"
  28.         print "  needs this patch.  Make sure you are using this\n"
  29.         print "  patch with NetWare Lite CLIENT.EXE, version 1.1.\n"
  30.         stop
  31.     endif
  32.  
  33.